home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 354_01.zip / CESMOUSE.BAS < prev    next >
BASIC Source File  |  1993-04-01  |  672b  |  21 lines

  1. REM This file is an $include Quick Basic file when using
  2. REM the medium memory model of the CESMouse Tools Library
  3. REM Copyright 1989, 1991, Computer Engineering Services
  4.  
  5. DECLARE FUNCTION showmouse CDECL
  6. DECLARE FUNCTION hidemouse CDECL
  7. DECLARE FUNCTION posmouse CDECL (X AS INTEGER, Y AS INTEGER)
  8.  
  9. DECLARE FUNCTION resetmouse% CDECL
  10. DECLARE FUNCTION mousedrvr% CDECL
  11. DECLARE FUNCTION buttons% CDECL
  12. DECLARE FUNCTION lftbutton% CDECL
  13. DECLARE FUNCTION ctrbutton% CDECL
  14. DECLARE FUNCTION rgtbutton% CDECL
  15. DECLARE FUNCTION mousecursX% CDECL
  16. DECLARE FUNCTION mousecursY% CDECL
  17.  
  18. DECLARE lastMX AS INTEGER
  19. DECLARE lastMY AS INTEGER
  20. DECLARE mbtns AS INTEGER
  21.